home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_05 / 9n05067a < prev    next >
Encoding:
Text File  |  1995-11-01  |  184 b   |  13 lines

  1.  
  2. #include <stdio.h>
  3. main()
  4.      {
  5.      int c;
  6.      while (1)
  7.              {
  8.              c = getch();
  9.              printf ("\n Value of c is %d", c);
  10.              }
  11.     }
  12.  
  13.